Tables [dbo].[MatchingGiftPlanRelationship]
Properties
PropertyValue
Row Count0
Created10:31:27 AM Tuesday, March 02, 2010
Last Modified11:40:04 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_MatchingGiftPlanRelationship: MatchingGiftPlanRelationshipKeyMatchingGiftPlanRelationshipKeyuniqueidentifier16
No
MatchingGiftPlanKeyuniqueidentifier16
No
RelationshipTypeKeyuniqueidentifier16
No
MarkedForDeleteOndatetime8
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_MatchingGiftPlanRelationship: MatchingGiftPlanRelationshipKeyPK_MatchingGiftPlanRelationshipMatchingGiftPlanRelationshipKey
Yes
SQL Script
CREATE TABLE [dbo].[MatchingGiftPlanRelationship]
(
[MatchingGiftPlanRelationshipKey] [uniqueidentifier] NOT NULL,
[MatchingGiftPlanKey] [uniqueidentifier] NOT NULL,
[RelationshipTypeKey] [uniqueidentifier] NOT NULL,
[MarkedForDeleteOn] [datetime] NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[MatchingGiftPlanRelationship] ADD CONSTRAINT [PK_MatchingGiftPlanRelationship] PRIMARY KEY CLUSTERED ([MatchingGiftPlanRelationshipKey]) ON [PRIMARY]
GO
Uses